From ff8de0a93f003f9c3bf6c32777a2055f39094ecf Mon Sep 17 00:00:00 2001 From: =?utf8?q?Timm=20B=C3=A4der?= Date: Sun, 29 Nov 2020 09:25:46 +0100 Subject: [PATCH] eventcontrollermotion: Notify by pspec --- gtk/gtkeventcontrollermotion.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gtk/gtkeventcontrollermotion.c b/gtk/gtkeventcontrollermotion.c index 8a9a623765..86c38c1048 100644 --- a/gtk/gtkeventcontrollermotion.c +++ b/gtk/gtkeventcontrollermotion.c @@ -133,12 +133,12 @@ update_pointer_focus (GtkEventController *controller, if (motion->is_pointer != is_pointer) { motion->is_pointer = is_pointer; - g_object_notify (G_OBJECT (motion), "is-pointer"); + g_object_notify_by_pspec (G_OBJECT (motion), props[PROP_IS_POINTER]); } if (motion->contains_pointer != contains_pointer) { motion->contains_pointer = contains_pointer; - g_object_notify (G_OBJECT (motion), "contains-pointer"); + g_object_notify_by_pspec (G_OBJECT (motion), props[PROP_CONTAINS_POINTER]); } g_object_thaw_notify (G_OBJECT (motion)); -- 2.30.2